怎么让一般表签在<textarea></textarea>中显示出效果

来源:百度知道 编辑:UC知道 时间:2024/07/11 05:16:00
<textarea><font color="red">hello </font></textarea>
在浏览器中显示hello并是红色,而不是按原文显示><font color="red">hello </font>这几个字符。
感谢一楼的回复,你能不能给个简单的例子或相关资料的链接?

晕,这个是文本域,就是原版显示的,如果需要显示样式,要用内嵌帧或者DHTML技术。
----------------
iframe做内嵌帧,然后用IframeName.document.designMode="On"代开编辑模式,那个iframe就可以做textarea的事情,还支持带格式的复制粘贴,

然后试试以下代码
IframeName.document.body.innerHTML="><font color="red">hello </font>"

以上代码都为JavaScript代码。

<textarea type=baidu style="font-size:12px;color:red"></textarea>
'在IE浏览器中无论输入什麽内容,都显示红色